home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 September / CHIP Eylül 1998.iso / Slackwar / zipslack / FAQ.TXT < prev    next >
Text File  |  1997-06-06  |  5KB  |  119 lines

  1.  
  2. Q:  I can't unzip the file -- it says I don't have enough memory!
  3.  
  4. A:  This happens if you use a 16-bit unzipper.  You must use a 32-bit version
  5.     such as WinZip or PKZIP for Windows95 or NT. (of course, unzip for Linux
  6.     also works fine :)
  7.  
  8. --------------------------------
  9.  
  10. Q:  All I have is DOS!  Do you know of an unzipper that works with zipslack.zip
  11.     for DOS or Windows 3.1?
  12.  
  13. A:  Yes, (for Win 3.x) I hear there's something called Zip Navigator.
  14.  
  15.     If you can't find that, here's how to unzip it under Linux.
  16.  
  17.     First, grab a bootdisk that works with your system.
  18.  
  19.      For an average IDE system:
  20.       ftp://ftp.cdrom.com/pub/linux/slackware/bootdsks.144/bare.i
  21.      For a SCSI system:
  22.       ftp://ftp.cdrom.com/pub/linux/slackware/bootdsks.144/scsi.s
  23.      For an IBM PS/2 microchannel bus machine:
  24.       ftp://ftp.cdrom.com/pub/linux/slackware/bootdsks.144/ibmmca.s
  25.      If you're unzipping the file to a parallel port Zip drive:
  26.       ftp://ftp.cdrom.com/pub/linux/slackware/bootdsks.144/iomega.s
  27.  
  28.     Then, you'll need the rescue disk.  This is a small Linux system on a
  29.     floppy disk.  One of the utilities it includes is unzip.  Here's where
  30.     you can get the rescue disk image:
  31.  
  32.     ftp://ftp.cdrom.com/pub/linux/slackware/rootdsks/rescue.gz
  33.  
  34.     Boot the first disk (the bootdisk), and hit enter at the 'boot:' prompt.
  35.     When prompted, insert the rootdisk (rescue.gz) and hit enter to load it.
  36.  
  37.     Log in as root.
  38.  
  39.     Now, you'll need to mount the DOS partition where the zipslack.zip file
  40.     resides.  If the final destination is a Zip disk, you might still just
  41.     want to go ahead and unzip the file on your DOS partition, and then move
  42.     the directory tree onto the Zip disk under DOS with XCOPY or a similar
  43.     tool.  If you're not sure what the name of your DOS partition is under
  44.     Linux, use this command:
  45.  
  46.         fdisk -l | more
  47.  
  48.     The partition name will be something like /dev/hda1.  To mount the
  49.     partition, use a command like this:
  50.  
  51.          mount /dev/hda1 /mnt -t msdos
  52.  
  53.     Switch to the /mnt directory, and unzip the file:
  54.  
  55.          cd /mnt
  56.          unzip zipslack.zip
  57.  
  58.     That should unzip the file.  Now you're ready to hit crtl-alt-delete and
  59.     reboot your machine.  From there, follow the directions in README.1st to
  60.     boot the Linux OS.
  61.  
  62.  
  63. --------------------------------
  64.  
  65. Q:  Are there other ways to handle the problem of 16-bit unzippers
  66.     failing to unzip ZIPSLACK.ZIP?
  67.  
  68. A:  Yes.  Here's another way to work around it that one of our users
  69.     reported:
  70.  
  71.     I had trouble unzipping - I don't have a win95 machine, and pkunzip
  72.     for DOS croaked horribly. Info-zip unzip did a much better job, but
  73.     died after about 3/4 of the unzip process (out of memory). So, I used
  74.     a "zip splitter" to split the zipslack.zip into floppy sized bites
  75.     (from Simtel, filename zc300.zip), then extracted each of the 26
  76.     zips to the Zip disk. Booted like a champ, runs nice but slow on a 486/66
  77.     with 12Mb ram.
  78.  
  79. --------------------------------
  80.  
  81. Q:  How do I add X to this?
  82.  
  83. A:  Assuming you've got the space to install it, download the X packages
  84.     (the files ending in .tgz) from this directory:
  85.  
  86.     ftp://ftp.cdrom.com/pub/linux/slackware/slakware/x1/
  87.  
  88.     You might also grab the diskx1 file, which describes each of the
  89.     packages.  You can save disk space if you don't install all of the X
  90.     servers (you only need the one for your video card), and you might
  91.     also leave out extra fonts, old X shared libraries (oldlibs*.tgz),
  92.     and possibly development tools if you're not planning to compile X
  93.     software yourself.  Once you've collected the packages you plan to
  94.     install into a directory, run this to install them:
  95.  
  96.     installpkg *.tgz
  97.  
  98.     Before running X, you'll need to set it up with 'xf86config'.
  99.  
  100. --------------------------------
  101.  
  102. Q:  I get "unable to open virtual console" when I boot!
  103.  
  104. A:  You're probably not giving LINUX.BAT the correct partition name.  If
  105.     you really have no idea which one to use, you can try each of these.
  106.     If it's on an IDE partition, it will almost definately be one of them:
  107.  
  108.     /dev/hda1 /dev/hda2 /dev/hda3 /dev/hda4 /dev/hda5 /dev/hda6
  109.     /dev/hdb1 /dev/hdb2 /dev/hdb3 /dev/hdb4 /dev/hdb5 /dev/hdb6
  110.     /dev/hdc1 /dev/hdc2 /dev/hdc3 /dev/hdc4 /dev/hdc5 /dev/hdc6
  111.     /dev/hdd1 /dev/hdd2 /dev/hdd3 /dev/hdd4 /dev/hdd5 /dev/hdd6
  112.  
  113.     If your know which hard drive (not C:, D:, etc, but which number
  114.     drive, 1, 2, 3, or 4) the partition is on, then you can narrow the
  115.     list down quite a bit.  The first IDE drive's partitions all start
  116.     with /dev/hda, the second hard drive's partitions begin with /dev/hdb,
  117.     and so on.
  118.  
  119.